home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE13 / COMPRESS / COMPRESS.ZIP / SELFXSML.DPR < prev   
Encoding:
Text File  |  1996-08-09  |  948 b   |  30 lines

  1. program selfXsml;
  2.  
  3. { TCompress V2.5 "Tiny" self-extracting EXE program.
  4.   This program uses the same approach (and doInstal unit) as
  5.   does the SELFEXTR.DPR unit. Hence, refer to the instructions
  6.   at the top of SELFEXTF.PAS for setup instructions.
  7.  
  8.   Notes:
  9.   1) Because no form is involved, this program will be
  10.      about 150K *smaller* than SELFEXTR.EXE. The downside is that
  11.      it has no user interaction, although you could use Windows
  12.      MessageBox calls to at least display a confirmation message.
  13.   2) In order to avoid having the Borland Database Engine linked in,
  14.      be sure to build your library with the COMPONLY.DCU (renamed
  15.      in placed of COMPRESS.DCU per the instructions in COMPRESS.HLP).
  16. }
  17.  
  18. {$R *.RES}
  19. {$R COMP_RES.RES}
  20.  
  21. uses doInstal;
  22.  
  23.  
  24. const PROG_NAME =   'notepad.exe';
  25.       README_NAME = 'readme.txt';
  26.  
  27. begin
  28.    DoInstall('',PROG_NAME, README_NAME); { into the CURRENT directory! }
  29. end.
  30.